:root {
    --purple: #000000;
    --red: #779600;
}

.close {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}
.close:hover {
    opacity: 1;
}
.close:before,
.close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: #333;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}

.highlight {
    background: rgba(255, 215, 0, 0.115);
}

p,
ul {
    margin-bottom: 20px;
    line-height: 1.75em;
}
li {
    list-style: none;
    margin-bottom: 10px;
}
li:last-child {
    margin-bottom: 0;
}
/* input[type="checkbox"] {
    margin-top: 10px;
    margin-right: 15px;
    float: left;
} */
/* label {
    display: inline-block;
    max-width: 90%;
} */
code {
    color: var(--red);
    font-family: monospace;
    font-size: 16px;
    background: #f7f7f7;
    padding: 3px 5px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
}



.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.cookie-titulo {
    color: #666;
    margin: 0 0 8px;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
}

.cookies__wrapper {
    display: grid;
    grid-row-gap: 20px;
    padding: 0 50px;
}

.btn-acept-coookie {
    width:100%;
    font-size: 18px;
    background-color: #23C787;
    color: #fff;
    padding: 5px 0;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 0;
    font-family: "Roboto", sans-serif;
}

.btn-no-acept-coookie {
    width:100%;
    padding: 5px 0;
    font-size: 18px;
    background: #fff;
    color: #A3A3A3;
    display: block;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 1px solid #A3A3A3;
    font-family: "Roboto", sans-serif;
}

.modal-cookie {
    display: block;
    position: fixed;
    z-index: 990;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-cookie {
    position: relative;
    background-clip: padding-box;
    background-color: #fefefe;
    border-radius: 6px;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    outline: 0;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);   
}

.cookie-wrapper-modal-content {
    border: 0!important;
    border-radius: 0;
}

.modal-content {
    padding: 1.5rem;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header:before,.modal-header:after {
   content: none;
}

.m-modal__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin: 20px 0 15px 0;
}

.icon-close {
    position: relative;
    z-index: 1050;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    background-color: transparent;
}

.icon-close:hover {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.icon-close:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.icon-close:after, .icon-close:before {
    content: '';
    position: absolute;
    height: 0.15rem;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -0.0625rem;
    background: #374649;
}

.icon-close:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cookie-wrapper-modal-body {
    padding-left: 0;
    padding-right: 0;
}

.modal-body {
    color: #000;
    padding: 0;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.cookie-wrapper-modal__simplebar {
    max-height: 500px;
}

.cookie-wrapper-modal__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
}

.cookie-wrapper-modal__flex--switch {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border-top: 2px solid #eee;
    padding-top: 16px;
}
.cookie-wrapper-modal__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px 0;
}

.cookie-wrapper-modal__title {
    font-size: 12px;
    font-weight: 700;
    color: #666;
}

.cookie-wrapper-modal__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
}

.cookie-switch {
    position: relative;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label {
    display: inline-block;
    padding: 0 16px;
    position: relative;
    width: 64px;
    height: 32px;
    max-height: 32px;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background-color: #c14c68;
    border-radius: 16px;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label:before, .cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label:hover:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    z-index: 2;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    border-radius: 50%;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label .on {
    display: none;
    color: #fff;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label .off {
    margin-top: 4px;
    margin-left: 20px;
    display: inline-block;
    color: #fff;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input:checked+label {
    background-color: #4ec33e;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input:checked+label:before, .cookie-switch-wrapper input[type=checkbox].cookie-switch-input:checked+label:hover:before {
    background-position: 0 0;
    top: 4px;
    left: 100%;
    margin-left: -28px;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input:checked+label .off {
    display: none;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label .off {
    margin-top: 4px;
    margin-left: 20px;
    display: inline-block;
    color: #fff;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input:checked+label .on {
    margin-top: 4px;
    margin-right: 20px;
    display: inline-block;
}

.cookie-switch-wrapper input[type=checkbox].cookie-switch-input+label .on {
    display: none;
    color: #fff;
}




@media (min-width: 767px) {
    #gdpr-cookie-message p {
        float: left;
    }

    .modal-content {
        max-width: 60%;
    }

    .modal-content-cookie { 
        width: 40%;
        padding: 20px 10px;
    }

    .cookie-subtitulo {
        font-size: 13px;
        line-height: 20px;
        color: #666;
        font-family: "Roboto", sans-serif;
        margin-bottom: 20px;
    }

    .cookie-titulo {
        font-size: 25px;
    }

}

/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    width: 100%;
    background-color: white;
    bottom: 0;
    z-index: 1;

    padding: 16px;
}
#gdpr-cookie-message h4 {
    color: #a98abf;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
    color: var(--red);
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p,
#gdpr-cookie-message ul {
    margin: 0 1rem 0 0;
    font-size: 1.2rem;
    text-align: justify;
}



@media (max-width: 575px) and (min-width: 0) {
    #gdpr-cookie-message p {
        font-size: 1rem !important;
        margin-right: 0 !important;
    }

    #gdpr-cookie-message a {
        font-size: 1rem !important;
    }

    #gdpr-cookie-message button {
        width: 100%;
        margin-top: 10px;
    }
}

.btn--sm {
    padding: 0.375rem 0.75rem;
    font-size: 1.2rem;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #a98abf;
    text-decoration: none;
    font-size: 1.2rem;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: #a98abf;
    border-bottom-color: var(--red);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    -webkit-filter: none;
    filter: none;
    background-repeat: no-repeat;
    border: 1px solid transparent;
    border-radius: 0.125rem;
    box-shadow: none;
    color: #fff;
    background-color: #929291;
    border-color: #929291;
    fill: currentColor;
    -webkit-transition: background-color 0.32s ease-in-out,
        border-color 0.32s ease-in-out, color 0.32s ease-in-out;
    transition: background-color 0.32s ease-in-out,
        border-color 0.32s ease-in-out, color 0.32s ease-in-out;
}
#gdpr-cookie-message button:hover {
    background: #929291;
    color: #fff;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: white;
    color: var(--red);
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
/* #gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
} */

.config-text {
    color: #0E8BFF;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 0 0;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

.config-text:hover {
    color:#000000;
}

.config-cookies {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 2%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.cookie-wrapper-modal__btn {
    display: inline-block;
    padding: 16px 48px;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0px;
    color: #fff!important;
    background: #0E8BFF;
    border-color: #0E8BFF;
}

.cookie-wrapper-modal__btn:hover {
    color: #fff!important;
    background-color: #0d6cc5;
}

.cookie-wrapper-modal {
    z-index: 9999;
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: #fff;
    margin: 0;
    -webkit-box-shadow: 0 -2px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 -2px 4px 0 rgb(0 0 0 / 20%);
}

.guardar_cookies {
    display: block;
    margin: 0 auto;
    padding: 16px 48px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0px;
    color: #fff!important;
    background: #0E8BFF;
    border-color: #0E8BFF;
}

@media (max-width: 768px) {
    #gdpr-cookie-pp {
        margin-top: 15px;
    }

    .modal-content-cookie { 
        width: 80%;
        padding: 20px 10px;
    }

    .cookie-subtitulo {
        font-size: 10px;
        line-height: 20px;
        color: #666;
        font-family: "Roboto", sans-serif;
        margin-bottom: 20px;
    }

    cookie-titulo {
        font-size: 12px;
    }

    .m-modal__title {
        font-size: 15px;
        margin: 20px 0 15px 0;
        text-align: center;
    }

    .config-cookies {
        left: 10px;
        width: 95%;
    }
}
